home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / bbsdoors / ckit258.zip / DEMO.BAT < prev    next >
DOS Batch File  |  1993-06-01  |  602b  |  15 lines

  1. REM SAMPLE BATCH file for making CKITDEMO using MSC
  2. REM Assuming your path are set to your compiler exe and lib files
  3. REM such as:
  4. REM             PATH=C:\MSC\BIN;C:\MSC;
  5. REM             INCLUDE=C:\MSC\INCLUDE
  6. REM             LIB=C:\MSC\LIB
  7. REM Need to define which compiler for CKITDEMO to compile correctly
  8. REM COMPILER = MICROSOFT
  9. REM This is only necassary when compiling the CKITDEMO.C program
  10. REM since it was designed to be compiled with MSC or TURBO C.
  11. REM (the -DCOMPILER switch)
  12.  
  13. cl  /c /Gs /Ote /Zp1 -DCOMPILER=MICROSOFT ckitdemo.c
  14. LINK    ckitdemo, ckitdemo.exe,,ckit_ms.lib;
  15.